/* Takhle se dělá více řádkový 

komentář

komentář
 */
 body  {
        display: grid;
        grid-template-columns: auto 100px;
      }
      
 header {
        grid-column-start: 1;
        grid-column-end:   3;
        grid-row-start:   1;
        grid-row-end:   2;
        }
nav{
grid-column: 2 / 3;
grid-row-start:  2 / 3;
}
      
 h1{
   background-color: Black;
   color: white;
   }
   
   h2{
   background-color: red;
   color: white;
   }